这里记录了git使用过程中碰到的问题.
同时也记录了一些小tips
Questions
Unlink of file failed
- pull branch occurs
- show the unlink of files, ask to try again or not
- the reason is sth file is used by other programs
- could be resolved by:
- git gc
- close all the program that using the git file
- reference url
git LF warning
碰到的问题是提交代码的时候一大堆的warning,很不爽
- stackoverflow有个说明非常棒,戳这里
简单讲自己理解
- warning是对core.autocrlf当前值的警告
- core.autocrlf控制了文件的push & fetch过程中,git是否会对换行符做处理
- 具体有个图可以参考上面的答案,很直观
windows对大小写不敏感的问题
修改git大小写敏感的配置即可
git config core.ignorecase false
想要修改author或者committer
查询当前commit的author和committer信息
git show commit_hash –pretty=full –stat
github去计算contribute的时候,是按照邮箱来的,所以主要确认下邮箱是否正确
然后如果有问题就改咯
git commit –amend –author=”toutoudnf toutoudnf@gmail.com“
就酱,改完收工